home *** CD-ROM | disk | FTP | other *** search
/ Revista do CD-ROM 97 / CD-ROM 97 / CD-ROM 97.iso / internet / ghostzilla / ghsetup.exe / chrome / comm.jar / content / editor / EdConvertToTable.xul < prev    next >
Encoding:
Extensible Markup Language  |  2002-04-09  |  3.1 KB  |  70 lines

  1. <?xml version="1.0"?>
  2.  
  3. <!--
  4.    - The contents of this file are subject to the Netscape Public
  5.    - License Version 1.1 (the "License"); you may not use this file
  6.    - except in compliance with the License. You may obtain a copy of
  7.    - the License at http://www.mozilla.org/NPL/
  8.    -  
  9.    - Software distributed under the License is distributed on an "AS
  10.    - IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  11.    - implied. See the License for the specific language governing
  12.    - rights and limitations under the License.
  13.    -  
  14.    - The Original Code is Mozilla Communicator client code, released
  15.    - March 31, 1998.
  16.    - 
  17.    - The Initial Developer of the Original Code is Netscape
  18.    - Communications Corporation. Portions created by Netscape are
  19.    - Copyright (C) 1998-1999 Netscape Communications Corporation. All
  20.    - Rights Reserved.
  21.    - 
  22.    - Contributor(s): 
  23.   -->
  24.  
  25. <?xml-stylesheet href="chrome://editor/skin/editor.css" type="text/css"?>
  26. <?xml-stylesheet href="chrome://editor/skin/EditorDialog.css" type="text/css"?>
  27.  
  28. <?xul-overlay href="chrome://global/content/dialogOverlay.xul"?> 
  29. <?xul-overlay href="chrome://editor/content/EdDialogOverlay.xul"?> 
  30. <?xul-overlay href="chrome://global/content/globalOverlay.xul"?>
  31. <?xul-overlay href="chrome://communicator/content/utilityOverlay.xul"?> 
  32.  
  33. <!DOCTYPE window SYSTEM "chrome://editor/locale/EdConvertToTable.dtd">
  34.  
  35. <dialog title="&windowTitle.label;"
  36.    xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  37.    onload = "Startup()"
  38.    ondialogaccept="return onAccept();"
  39.    ondialogcancel="return onCancel();"
  40.    style="min-width:20em">
  41.  
  42.   <!-- Methods common to all editor dialogs -->
  43.   <script type="application/x-javascript" src="chrome://editor/content/editorUtilities.js"/>
  44.   <script type="application/x-javascript" src="chrome://editor/content/EdDialogCommon.js"/>
  45.   <script type="application/x-javascript" src="chrome://global/content/dialogOverlay.js" />
  46.   <!--- Element-specific methods -->
  47.   <script type="application/x-javascript" src="chrome://editor/content/EdConvertToTable.js"/>
  48.  
  49.   <spacer id="location" offsetY="50" persist="offsetX offsetY"/>
  50.   <description class="wrap" flex="1">&instructions1.label;</description>
  51.   <description class="wrap" flex="1">&instructions2.label;</description>
  52.   <radiogroup id="SepRadioGroup" persist="index character" index="0" character="">
  53.     <radio id="comma" label="&commaRadio.label;" oncommand="SelectCharacter('0');"/>
  54.     <radio id="space" label="&spaceRadio.label;" oncommand="SelectCharacter('1');"/>
  55.     <hbox>
  56.       <spacer class="radio-spacer"/>
  57.       <checkbox id="CollapseSpaces" label="&collapseSpaces.label;"
  58.                 checked="true" persist="checked"
  59.                 tooltiptext="&collapseSpaces.tooltip;"/>
  60.     </hbox>
  61.     <hbox align="center">
  62.       <radio id="other" label="&otherRadio.label;" oncommand="SelectCharacter('2');"/>
  63.       <textbox class="narrow" id="SepCharacterInput" oninput="InputSepCharacter()"/>
  64.     </hbox>
  65.   </radiogroup> 
  66.   <spacer class="spacer"/>
  67.   <checkbox id="DeleteSepCharacter" label="&deleteCharCheck.label;" persist="checked"/>
  68.   <separator class="groove"/>
  69. </dialog>
  70.